home *** CD-ROM | disk | FTP | other *** search
- property pSp, pSpeed, pRlimit, pLlimit, pDirection
-
- on getPropertyDescriptionList
- d = [:]
- addProp(d, #pSpeed, [#default: 5, #format: #integer, #range: [#min: 1, #max: 100], #comment: "Hey asshole put in the speed!"])
- addProp(d, #pRlimit, [#default: 640, #format: #integer, #range: [#min: 0, #max: 900], #comment: "Put in the Right limit dummy!"])
- addProp(d, #pLlimit, [#default: 0, #format: #integer, #range: [#min: -150, #max: 640], #comment: "Put in the Left limit sillyhead!"])
- addProp(d, #pDirection, [#default: "Right", #format: #string, #range: ["Right", "Left"], #comment: "where do you want to go today?"])
- return d
- end
-
- on prepareFrame me
- pos = the locH of sprite pSp
- if pDirection = "Right" then
- speed = pSpeed
- else
- if pDirection = "Left" then
- speed = -pSpeed
- end if
- end if
- newPos = pos + speed
- if newPos >= pRlimit then
- newPos = pLlimit
- else
- if newPos <= pLlimit then
- newPos = pRlimit
- end if
- end if
- set the locH of sprite pSp to newPos
- end
-
- on beginSprite me
- pSp = me.spriteNum
- end
-
- on endSprite me
- end
-
- on getBehaviorDescription
- description = "this is gonna move something to the left"
- return description
- end
-